From 6b925946051707c67a6c56c9da58e00a2569d996 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20H=C3=A4rdeman?= Date: Sun, 5 Oct 2025 08:22:15 +0200 Subject: [PATCH] luci-mod-network: change IPv6 suffix to token MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The term "token" is widely used, e.g. in the relevant internet draft [1], ip-token(8), systemd-network(5), NetworkManager [2], etc. [1] https://datatracker.ietf.org/doc/html/draft-chown-6man-tokenised-ipv6-identifiers-02 [2] https://networkmanager.dev/docs/api/1.32.10/settings-ipv6.html Signed-off-by: David Härdeman --- .../htdocs/luci-static/resources/view/network/dhcp.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js index e5c083babd..af23fa2433 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js @@ -858,8 +858,9 @@ return view.extend({ }); so = ss.option(form.Value, 'hostid', - _('IPv6-Suffix (hex)'), - _('The IPv6 interface identifier (address suffix) as hexadecimal number (max. 16 chars).')); + _('IPv6 Token'), + _('The hexadecimal IPv6 token for this host (up to 16 chars, i.e. 64 bits).') + .format('https://datatracker.ietf.org/doc/html/draft-chown-6man-tokenised-ipv6-identifiers-02')); so.datatype = 'and(rangelength(0,16),hexstring)'; so = ss.option(form.DynamicList, 'tag', -- 2.30.2